Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/069-infinite scroll posts

style.css cody/solygambas/html-css-javascript-projects/069-infinite scroll posts/style.css
202 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

:root {
--main-color: #9cd4fa;
--secondary-color: #5da7e1;
--light-color: #eef7fc;
--dark-color: #171830;
}
index.html cody/solygambas/html-css-javascript-projects/069-infinite scroll posts/index.html
392 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>My Blog</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/069-infinite scroll posts/script.js
273 Views
0 Comments
const postsContainer = document.getElementById("posts-container");
const loading = document.getElementById("loader");
const filter = document.getElementById("filter");

let limit = 5;
let page = 1;
let isLoading = false;